home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 1.iso / games / yalife.zip / SOURCE / LIFE.RC < prev    next >
Text File  |  1993-09-07  |  951b  |  43 lines

  1. #include <windows.h>
  2. #include <owlrc.h>
  3. #include "life.h"
  4.  
  5. rcinclude inputdia.dlg
  6.  
  7. LifeIcon ICON "life.ico"
  8.  
  9. COMMANDS MENU 
  10. BEGIN
  11.     POPUP "&File"
  12.     BEGIN
  13.         MENUITEM "&Clear", CM_FILENEW
  14.         MENUITEM "&Erase area", CM_ERASE
  15.         MENUITEM "&Save As", CM_U_FILESAVEAS
  16.         MENUITEM "Save area &As", CM_U_FILESAVEAREAAS
  17.         MENUITEM SEPARATOR
  18.         MENUITEM "E&xit", CM_EXIT
  19.     END
  20.  
  21.     MENUITEM "&Shapes", CM_SHAPE
  22.     POPUP "&Options"
  23.     BEGIN
  24.         MENUITEM "Set color for &Set", CM_COLOR_SET
  25.         MENUITEM "Set color for &Reset", CM_COLOR_RESET
  26.         MENUITEM "Set color for &Unset", CM_COLOR_UNSET
  27.                 MENUITEM "Clear &Generation counter",CM_CLEAR_GEN
  28.     END
  29.  
  30.     MENUITEM "s&Tep", CM_STEP
  31.     MENUITEM "&Run", CM_RUN
  32.     MENUITEM "&Zoomout", CM_ZOOMOUT
  33.     MENUITEM "Zoom&In", CM_ZOOMIN
  34.     POPUP "&Help", HELP
  35.     BEGIN
  36.         MENUITEM "&Contents", CM_HELP
  37.         MENUITEM "Using &help", CM_HELPHELP
  38.         MENUITEM SEPARATOR
  39.         MENUITEM "&About", CM_ABOUT
  40.     END
  41.  
  42. END
  43.